home *** CD-ROM | disk | FTP | other *** search
- #ifndef __NoseResizePlugIn__
- #define __NoseResizePlugIn__
- #include "kSanCellResizePlugIn.h"
-
- #define kNoseCellResizeDialogResID 156
-
- #define iNoseDensityItem 3
- #define iNoseTimeConstItem 4
-
-
- typedef struct noseCellResizePlugInType
- {
- double lastResizeTime;
- double noseTimeConst;
- double noseMass;
- kSanVector noseVelocity;
- }
- noseCellResizePlugIn;
-
- #define ncrData(obj) ((noseCellResizePlugIn *)kozoObjectGetPrivateData(obj, ClassNoseCellResizePlugIn))
-
-
- short noseCellResizerConstructor (KozoDispatchStack *ds, constructorMethodArgs *cma);
- short noseCellResizerDestructor (KozoDispatchStack *ds, destructorMethodArgs* dma);
- short noseCellResizerGetData (KozoDispatchStack *ds, getMethodArgs *gma);
- short noseCellResizerSetData (KozoDispatchStack *ds, setMethodArgs *sma);
- short noseCellResizerDoMessage (KozoDispatchStack *ds, doMessageMethodArgs *dmma);
- short noseCellResize ( kSanCellResizePlugIn *api, kSanSimulation *sim);
-
- #endif
-
-